LanguageExt.Core

LanguageExt.Core Prelude Function argument flipping

Contents

class Prelude Source #

Methods

method Func<B, Func<A, R>> flip <A, B, R> (Func<A, Func<B, R>> f) Source #

Reverse the order of the arguments to a curried function

method Func<C, Func<B, Func<A, R>>> flip <A, B, C, R> (Func<A, Func<B, Func<C, R>>> f) Source #

Reverse the order of the arguments to a curried function

method Func<B, A, R> flip <A, B, R> (Func<A, B, R> f) Source #

Reverse the order of the arguments to a function

method Func<C, B, A, R> flip <A, B, C, R> (Func<A, B, C, R> f) Source #

Reverse the order of the arguments to a function

method Func<B, Func<A, R>> Flip <A, B, R> (this Func<A, Func<B, R>> f) Source #

Reverse the order of the arguments to a curried function

method Func<C, Func<B, Func<A, R>>> Flip <A, B, C, R> (this Func<A, Func<B, Func<C, R>>> f) Source #

Reverse the order of the arguments to a curried function

method Func<B, A, R> Flip <A, B, R> (this Func<A, B, R> f) Source #

Reverse the order of the arguments to a function

method Func<C, B, A, R> Flip <A, B, C, R> (this Func<A, B, C, R> f) Source #

Reverse the order of the arguments to a function